Lobbywatch Data Interface (dataIF) (1.2)

Download OpenAPI specification:Download

Public data interface for accessing Lobbywatch data.

Introduction

The project Lobbywatch.ch maintains a database (DB) of Swiss parliamentarian and their relations to lobby organizations.

This document describes the Lobbywatch.ch data interface (dataIF). This data interface can be used for visualizations, e.g d3.

The data interface is close to the DB model. The data interface is based on the views. The data model is available as 1 page or on 4 pages. Additionally, there is a simplified data model. Usage of this data interface requires knowledge of the DB data model.

Data are delivered in JSON.

The data interface is written in a generic way from the data model.

All names and keys are always in minor case. Words are separated by _.

GraphQL

There is another interface to the Lobbywatch data. Some data are provided as GraphQL. The data of the Lobbywatch GraphQL interace are based on this data interface (dataIF).

Examples

Example 1: Get data about Branche with Id 1

Call:
https://cms.lobbywatch.ch/de/data/interface/v1/json/table/branche/flat/id/1

JSON Response:

{
    "success" : true,
    "count" : 1,
    "message" : "1 record(s) found",
    "sql" : "\n      SELECT branche.*\n      FROM v_branche branche\n      WHERE branche.id=:id",
    "source": "branche",
    "build secs": 0.15,
    "data" : {
    "anzeige_name" : "Gesundheit",
    "id" : "1",
    "name" : "Gesundheit",
    "kommission_id" : "1",
    "beschreibung" : "Akteure im Gesundheitswesen",
    "angaben" : "Wie werden die ca. 60 Milliarden jährlich aufgeteilt",
    "farbcode" : "blue",
    "symbol_rel" : null,
    "symbol_klein_rel" : "branche_symbole\/default_branche.png",
    "symbol_dateiname_wo_ext" : null,
    "symbol_dateierweiterung" : null,
    "symbol_dateiname" : null,
    "symbol_mime_type" : null,
    "kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)",
    "symbol_path" : "\/test\/files\/branche_symbole\/default_branche.png",
    "symbol_url" : "http:\/\/lobbywatch.ch\/\/test\/files\/branche_symbole\/default_branche.png"
    }
}

Example 2: Get all lobbygroups from Branche 1

Call:
https://cms.lobbywatch.ch/de/data/interface/v1/json/table/interessengruppe/flat/list?filter_branche_id=1

JSON Response:

{
    "success" : true,
    "count" : 13,
    "message" : "13 record(s) found",
    "sql" : "\n    SELECT interessengruppe.*\n    FROM v_interessengruppe interessengruppe\n    WHERE 1  AND interessengruppe.branche_id = 1",
    "source": "interessengruppe",
    "build secs": 0.18,
    "data" : [
        {
        "anzeige_name" : "Pharma",
        "id" : "1",
        "name" : "Pharma",
        "branche_id" : "1",
        "beschreibung" : "Medikamentenforschung, Medikamentenvertrieb, Pharmafirmen, Apotheken",
        "branche" : "Gesundheit",
        "kommission_id" : "1",
        "kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)"
        },
        {
        "anzeige_name" : "Krankenkassen",
        "id" : "2",
        "name" : "Krankenkassen",
        "branche_id" : "1",
        "beschreibung" : "Krankenkassen, Dachorganisationen KK, Unterorganisationen KK",
        "branche" : "Gesundheit",
        "kommission_id" : "1",
        "kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)"
        },
        {"__comment" : "…"},
        {
        "anzeige_name" : "Dienstleistungen",
        "id" : "88",
        "name" : "Dienstleistungen",
        "branche_id" : "1",
        "beschreibung" : "Firmen mit Dienstleistungen explizit für das Gesundheitswesen, z.B. IT-Lösungen.",
        "branche" : "Gesundheit",
        "kommission_id" : "1",
        "kommission" : "Kommissionen für soziale Sicherheit und Gesundheit (SGK)"
        } ]
}

Cross-origin resource sharing (CORS)

Browsers apply by default the same-origin policy for AJAX calls (XMLHttpRequest). Thus, it is by default not possible to use cross-domain webservices in Javascript.

Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the resource originated.

If you want to access the Lobbywatch data interface by AJAX/XHR calls, you need to add a CORS header.

The HTTP response header to set for dataIF JSON webservice calls:

Access-Control-Allow-Origin: https://cms.lobbywatch.ch

Please do not abuse the Lobbywatch Data Interface.

Fields

Information about fields

freigabe_datum

The freigabe_datum meta field gives the state of the record.

  • null: not yet public, only listed for completness
  • < now: published at the freigabe_datum
  • now: is public after freigabe_datum

anzeige_name

The anzeige_name is a formatted name of the record. This name is localized depending on the languge, see in chapter language.

*_unix

The fields ending with *_unix contain the date in the UNIX date format, seconds since 01.01.1970.

erfasst

If erfasst is false means the Parlamentarier, is not entered. This field is set to false, if it is known, that the Parlamentarier will not be available anymore for the parliament in the next election. The value erfasst is only fully reliable if the freigabe_datum is set.

Special Queries

Special queries (see filtering below):

Parlament-Partei

Parteien mit den Parlamentarieren und deren Anzahl Verbindungen.

https://cms.lobbywatch.ch/de/data/interface/v1/json/query/parlament-partei/aggregated/list

Example Name:

https://cms.lobbywatch.ch/de/data/interface/v1/json/query/parlament-partei/aggregated/list?limit=10&select_fields=parlamentarier.anzeige_name

Example number of interessenbindungen of parlamentarier (language dependent):

https://cms.lobbywatch.ch/de/data/interface/v1/json/query/parlament-partei/aggregated/list?lang=fr&limit=none&select_fields=parlamentarier.anzeige_name,parlamentarier.anzahl_interessenbindung_tief,parlamentarier.anzahl_interessenbindung_mittel,parlamentarier.anzahl_interessenbindung_hoch,parlamentarier.kommissionen_abkuerzung_de,parlamentarier.kommissionen_abkuerzung_fr,parlamentarier.rat_de,parlamentarier.rat_fr,parlamentarier.freigabe_datum

Filtering

Records of query calls can be filtered by one or several fields by appending URL parameters.

Filters work for all available fields in the base query view.

Format of filters:

Simple field

filter_{FIELD}=value

where filter_ is the prefix, {FIELD} is the name of the field and

Example:

filter_branche_id=1

List

filter_{FIELD}_list=value

where filter_ is the prefix, _list ist the suffix, {FIELD} is the name of the field and value is a comma separated list of values.

Example:

filter_branche_id_list=1,2,3

Filters work for all available fields in the base query view.

Like

filter_{FIELD}_like=value

where filter_ is the prefix, _like ist the suffix, {FIELD} is the name of the field and value is filter value which can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%

Filters work for all available fields in the base query view.

Limit results

The number of results can be limited. The default is 10.

limit=25

Call:
https://cms.lobbywatch.ch/de/data/interface/v1/json/table/parlamentarier/flat/list?limit=25

The parameter limitlimits the number of results to the number.

limit=none

limit=none excludes the LIMIT SQL statement.

Fields select

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Call:
https://cms.lobbywatch.ch/de/data/interface/v1/json/table/parlamentarier/flat/list?select_fields=parlamentarier.nachname,parlamentarier.vorname

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name.

Language

Data are only returned for one language. If the language parameter lang is not set, German is the default.

Example:

lang=fr
lang=de

Options / Parameters

Queries can be modified by several options. Some options are only available if permission is granted.

  • includeUnpublished=1 (default): Show unpublished data? (Requires advanced permission)
  • includeInactive=0 (default): Show historised data, e.g. retired parlamentarians? (Requires advanced permission)
  • includeConfidentialData=0 (default): Show confidential data? (Requires advanced permission)
  • includeMetaData=0 (default): Show meta data, e.g. from the workflow

List

Get a list of records (see filtering below)

Get list of Branche

Return a list of Branche

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung

Return a list of Interessenbindung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of In Kommission

Return a list of In Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommission

Return a list of Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandat

Return a list of Mandat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation

Return a list of Organisation

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationsjahr

Return a list of Organisationsjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentarier

Return a list of Parlamentarier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Partei

Return a list of Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Fraktion

Return a list of Fraktion

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Rat

Return a list of Rat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kanton

Return a list of Kanton

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kantonjahr

Return a list of Kantonjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Person

Return a list of Person

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier einer Kommission

Return a list of Parlamenterier einer Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommissionen für Parlamenterier

Return a list of Kommissionen für Parlamenterier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung eines Parlamenteriers

Return a list of Interessenbindung eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Indirekte Interessenbindungen eines Parlamenteriers

Return a list of Indirekte Interessenbindungen eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandate einer Zutrittsberechtigung (LFET JOIN)

Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen für welche eine PR-Agentur arbeitet.

Return a list of Organisationen für welche eine PR-Agentur arbeitet.

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen, in welcher eine Organisation Mitglied ist

Return a list of Organisationen, in welcher eine Organisation Mitglied ist

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Muttergesellschaften

Return a list of Muttergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen, die eine PR-Firma beauftragt haben

Return a list of Organisationen, die eine PR-Firma beauftragt haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mitgliedsorganisationen

Return a list of Mitgliedsorganisationen

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Tochtergesellschaften

Return a list of Tochtergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of aggregierte Parlament-Partei

Return a list of aggregierte Parlament-Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

By ID

Get one record by id

Get Branche by ID

Return a single Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Interessenbindung by ID

Return a single Interessenbindung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Interessenbindungsvergütung by ID

Return a single Interessenbindungsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Lobbygruppe (Interessengruppe) by ID

Return a single Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get In Kommission by ID

Return a single In Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kommission by ID

Return a single Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Mandat by ID

Return a single Mandat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Mandatsvergütung by ID

Return a single Mandatsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisation by ID

Return a single Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisation Beziehung by ID

Return a single Organisation Beziehung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisationsjahr by ID

Return a single Organisationsjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Parlamentarier by ID

Return a single Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Parlamentariertransparenz by ID

Return a single Parlamentariertransparenz

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Partei by ID

Return a single Partei

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Fraktion by ID

Return a single Fraktion

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Rat by ID

Return a single Rat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kanton by ID

Return a single Kanton

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kantonjahr by ID

Return a single Kantonjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Zutrittsberechtigter by ID

Return a single Zutrittsberechtigter

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Person by ID

Return a single Person

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Lobbypediaverknüpfung by ID

Return a single Lobbypediaverknüpfung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierter Parlamentarier by ID

Return a single aggregierter Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierter Gast by ID

Return a single aggregierter Gast

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Organisation by ID

Return a single aggregierte Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Lobbygruppe (Interessengruppe) by ID

Return a single aggregierte Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Branche by ID

Return a single aggregierte Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Aggregated

Aggregated data containing nested objects

Get aggregierter Parlamentarier by ID

Return a single aggregierter Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierter Gast by ID

Return a single aggregierter Gast

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Organisation by ID

Return a single aggregierte Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Lobbygruppe (Interessengruppe) by ID

Return a single aggregierte Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Branche by ID

Return a single aggregierte Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of aggregierte Parlament-Partei

Return a list of aggregierte Parlament-Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Flat

Data straight from DB tables

Get Branche by ID

Return a single Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Branche

Return a list of Branche

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Branche

Return a list of Branche

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Interessenbindung by ID

Return a single Interessenbindung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindung

Return a list of Interessenbindung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung

Return a list of Interessenbindung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Interessenbindungsvergütung by ID

Return a single Interessenbindungsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Lobbygruppe (Interessengruppe) by ID

Return a single Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get In Kommission by ID

Return a single In Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of In Kommission

Return a list of In Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of In Kommission

Return a list of In Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kommission by ID

Return a single Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kommission

Return a list of Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommission

Return a list of Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Mandat by ID

Return a single Mandat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandat

Return a list of Mandat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandat

Return a list of Mandat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Mandatsvergütung by ID

Return a single Mandatsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisation by ID

Return a single Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation

Return a list of Organisation

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation

Return a list of Organisation

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisation Beziehung by ID

Return a single Organisation Beziehung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisationsjahr by ID

Return a single Organisationsjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisationsjahr

Return a list of Organisationsjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationsjahr

Return a list of Organisationsjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Parlamentarier by ID

Return a single Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentarier

Return a list of Parlamentarier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentarier

Return a list of Parlamentarier

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Parlamentariertransparenz by ID

Return a single Parlamentariertransparenz

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Partei by ID

Return a single Partei

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Partei

Return a list of Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Partei

Return a list of Partei

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Fraktion by ID

Return a single Fraktion

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Fraktion

Return a list of Fraktion

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Fraktion

Return a list of Fraktion

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Rat by ID

Return a single Rat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Rat

Return a list of Rat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Rat

Return a list of Rat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kanton by ID

Return a single Kanton

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kanton

Return a list of Kanton

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kanton

Return a list of Kanton

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kantonjahr by ID

Return a single Kantonjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kantonjahr

Return a list of Kantonjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kantonjahr

Return a list of Kantonjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Zutrittsberechtigter by ID

Return a single Zutrittsberechtigter

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Person by ID

Return a single Person

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Person

Return a list of Person

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Person

Return a list of Person

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Lobbypediaverknüpfung by ID

Return a single Lobbypediaverknüpfung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamenterier einer Kommission

Return a list of Parlamenterier einer Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommissionen für Parlamenterier

Return a list of Kommissionen für Parlamenterier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung eines Parlamenteriers

Return a list of Interessenbindung eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Indirekte Interessenbindungen eines Parlamenteriers

Return a list of Indirekte Interessenbindungen eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandate einer Zutrittsberechtigung (LFET JOIN)

Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen für welche eine PR-Agentur arbeitet.

Return a list of Organisationen für welche eine PR-Agentur arbeitet.

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen, in welcher eine Organisation Mitglied ist

Return a list of Organisationen, in welcher eine Organisation Mitglied ist

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Muttergesellschaften

Return a list of Muttergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen, die eine PR-Firma beauftragt haben

Return a list of Organisationen, die eine PR-Firma beauftragt haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mitgliedsorganisationen

Return a list of Mitgliedsorganisationen

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Tochtergesellschaften

Return a list of Tochtergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Relation

Data based on DB views

Get list of Parlamenterier einer Kommission

Return a list of Parlamenterier einer Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommissionen für Parlamenterier

Return a list of Kommissionen für Parlamenterier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung eines Parlamenteriers

Return a list of Interessenbindung eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Indirekte Interessenbindungen eines Parlamenteriers

Return a list of Indirekte Interessenbindungen eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandate einer Zutrittsberechtigung (LFET JOIN)

Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen für welche eine PR-Agentur arbeitet.

Return a list of Organisationen für welche eine PR-Agentur arbeitet.

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen, in welcher eine Organisation Mitglied ist

Return a list of Organisationen, in welcher eine Organisation Mitglied ist

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Muttergesellschaften

Return a list of Muttergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationen, die eine PR-Firma beauftragt haben

Return a list of Organisationen, die eine PR-Firma beauftragt haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mitgliedsorganisationen

Return a list of Mitgliedsorganisationen

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Tochtergesellschaften

Return a list of Tochtergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Tables

Lobbywatch.ch tables can be queried in several ways. The interfaces access the corresponding views of the tables. The views enrich the tables and make their usage more convenient.

Search

Searches by name (see filtering below)

Search (Entity detection)

Search for entities having a certain string

path Parameters
str
required
string

Search string

query Parameters
tables
string
Default: "parlamentarier,zutrittsberechtigung,branche,interessengruppe,kommission,organisation,partei"
Example: tables=parlamentarier,zutrittsberechtigung

Comma separated list of table_name to query. Available tables: parlamentarier, zutrittsberechtigung, branche, interessengruppe, kommission, organisation, partei. Default is 'all tables'.

limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 2,
  • "message": "2 record(s) found ",
  • "sql": "SELECT id, page, table_name, name_de, name_fr, table_weight, weight\n-- , freigabe_datum, bis\nFROM v_search_table\nWHERE search_keywords_de LIKE :str AND (table_name='parlamentarier' OR table_name='zutrittsberechtigung' OR freigabe_datum <= NOW())ORDER BY table_weight, weight LIMIT 10 ;\n",
  • "source": "search_table",
  • "build secs": "0.06",
  • "data": [
    ]
}

Get list of Branche

Return a list of Branche

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindung

Return a list of Interessenbindung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of In Kommission

Return a list of In Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kommission

Return a list of Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandat

Return a list of Mandat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation

Return a list of Organisation

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisationsjahr

Return a list of Organisationsjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentarier

Return a list of Parlamentarier

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Partei

Return a list of Partei

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Fraktion

Return a list of Fraktion

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Rat

Return a list of Rat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kanton

Return a list of Kanton

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kantonjahr

Return a list of Kantonjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Person

Return a list of Person

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Branche

Get Branche by ID

Return a single Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Branche

Return a list of Branche

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Branche

Return a list of Branche

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Table

Get Branche by ID

Return a single Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Branche

Return a list of Branche

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Branche

Return a list of Branche

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Interessenbindung by ID

Return a single Interessenbindung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindung

Return a list of Interessenbindung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung

Return a list of Interessenbindung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Interessenbindungsvergütung by ID

Return a single Interessenbindungsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Lobbygruppe (Interessengruppe) by ID

Return a single Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get In Kommission by ID

Return a single In Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of In Kommission

Return a list of In Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of In Kommission

Return a list of In Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kommission by ID

Return a single Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kommission

Return a list of Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommission

Return a list of Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Mandat by ID

Return a single Mandat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandat

Return a list of Mandat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandat

Return a list of Mandat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Mandatsvergütung by ID

Return a single Mandatsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisation by ID

Return a single Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation

Return a list of Organisation

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation

Return a list of Organisation

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisation Beziehung by ID

Return a single Organisation Beziehung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Organisationsjahr by ID

Return a single Organisationsjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisationsjahr

Return a list of Organisationsjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationsjahr

Return a list of Organisationsjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Parlamentarier by ID

Return a single Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentarier

Return a list of Parlamentarier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentarier

Return a list of Parlamentarier

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Parlamentariertransparenz by ID

Return a single Parlamentariertransparenz

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Partei by ID

Return a single Partei

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Partei

Return a list of Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Partei

Return a list of Partei

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Fraktion by ID

Return a single Fraktion

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Fraktion

Return a list of Fraktion

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Fraktion

Return a list of Fraktion

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Rat by ID

Return a single Rat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Rat

Return a list of Rat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Rat

Return a list of Rat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kanton by ID

Return a single Kanton

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kanton

Return a list of Kanton

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kanton

Return a list of Kanton

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Kantonjahr by ID

Return a single Kantonjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kantonjahr

Return a list of Kantonjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kantonjahr

Return a list of Kantonjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Zutrittsberechtigter by ID

Return a single Zutrittsberechtigter

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Person by ID

Return a single Person

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Person

Return a list of Person

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Person

Return a list of Person

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get Lobbypediaverknüpfung by ID

Return a single Lobbypediaverknüpfung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierter Parlamentarier by ID

Return a single aggregierter Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierter Gast by ID

Return a single aggregierter Gast

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Organisation by ID

Return a single aggregierte Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Lobbygruppe (Interessengruppe) by ID

Return a single aggregierte Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get aggregierte Branche by ID

Return a single aggregierte Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Interessenbindung

Get Interessenbindung by ID

Return a single Interessenbindung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindung

Return a list of Interessenbindung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindung

Return a list of Interessenbindung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Interessenbindungsvergütung

Get Interessenbindungsvergütung by ID

Return a single Interessenbindungsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Interessenbindungsvergütung

Return a list of Interessenbindungsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Lobbygruppe (Interessengruppe)

Get Lobbygruppe (Interessengruppe) by ID

Return a single Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Lobbygruppe (Interessengruppe)

Return a list of Lobbygruppe (Interessengruppe)

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

In Kommission

Get In Kommission by ID

Return a single In Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of In Kommission

Return a list of In Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of In Kommission

Return a list of In Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Kommission

Get Kommission by ID

Return a single Kommission

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kommission

Return a list of Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kommission

Return a list of Kommission

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Mandat

Get Mandat by ID

Return a single Mandat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandat

Return a list of Mandat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandat

Return a list of Mandat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Mandatsvergütung

Get Mandatsvergütung by ID

Return a single Mandatsvergütung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Mandatsvergütung

Return a list of Mandatsvergütung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Organisation

Get Organisation by ID

Return a single Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation

Return a list of Organisation

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation

Return a list of Organisation

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Organisation Beziehung

Get Organisation Beziehung by ID

Return a single Organisation Beziehung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisation Beziehung

Return a list of Organisation Beziehung

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Organisationsjahr

Get Organisationsjahr by ID

Return a single Organisationsjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Organisationsjahr

Return a list of Organisationsjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Organisationsjahr

Return a list of Organisationsjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Parlamentarier

Get Parlamentarier by ID

Return a single Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentarier

Return a list of Parlamentarier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentarier

Return a list of Parlamentarier

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Parlamentariertransparenz

Get Parlamentariertransparenz by ID

Return a single Parlamentariertransparenz

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Parlamentariertransparenz

Return a list of Parlamentariertransparenz

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Partei

Get Partei by ID

Return a single Partei

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Partei

Return a list of Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Partei

Return a list of Partei

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Fraktion

Get Fraktion by ID

Return a single Fraktion

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Fraktion

Return a list of Fraktion

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Fraktion

Return a list of Fraktion

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Rat

Get Rat by ID

Return a single Rat

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Rat

Return a list of Rat

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Rat

Return a list of Rat

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Kanton

Get Kanton by ID

Return a single Kanton

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kanton

Return a list of Kanton

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kanton

Return a list of Kanton

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Kantonjahr

Get Kantonjahr by ID

Return a single Kantonjahr

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Kantonjahr

Return a list of Kantonjahr

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Kantonjahr

Return a list of Kantonjahr

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Zutrittsberechtigter

Get Zutrittsberechtigter by ID

Return a single Zutrittsberechtigter

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Zutrittsberechtigter

Return a list of Zutrittsberechtigter

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Person

Get Person by ID

Return a single Person

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Get list of Person

Return a list of Person

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Get list of Person

Return a list of Person

path Parameters
str
required
string
Example: gesundheit

Search string for name

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Lobbypediaverknüpfung

Get Lobbypediaverknüpfung by ID

Return a single Lobbypediaverknüpfung

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Parlamenterier einer Kommission

Get list of Parlamenterier einer Kommission

Return a list of Parlamenterier einer Kommission

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Kommissionen für Parlamenterier

Get list of Kommissionen für Parlamenterier

Return a list of Kommissionen für Parlamenterier

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Interessenbindung eines Parlamenteriers

Get list of Interessenbindung eines Parlamenteriers

Return a list of Interessenbindung eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Indirekte Interessenbindungen eines Parlamenteriers

Get list of Indirekte Interessenbindungen eines Parlamenteriers

Return a list of Indirekte Interessenbindungen eines Parlamenteriers

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Mandate einer Zutrittsberechtigung (INNER JOIN)

Get list of Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Mandate einer Zutrittsberechtigung (LFET JOIN)

Get list of Mandate einer Zutrittsberechtigung (LFET JOIN)

Return a list of Mandate einer Zutrittsberechtigung (LFET JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

Get list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

Return a list of Indirekte Mandate einer Zutrittsberechtigung (INNER JOIN)

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

Get list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

Get list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

Get list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

Return a list of Parlamenterier, die eine Zutrittsberechtiung mit Mandant oder Interessenbindung zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

Get list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

Return a list of Parlamenterier, die eine indirekte Interessenbindung oder indirekte Zutrittsberechtiung mit Mandat zu dieser Organisation haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Organisationen für welche eine PR-Agentur arbeitet.

Get list of Organisationen für welche eine PR-Agentur arbeitet.

Return a list of Organisationen für welche eine PR-Agentur arbeitet.

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Organisationen, in welcher eine Organisation Mitglied ist

Get list of Organisationen, in welcher eine Organisation Mitglied ist

Return a list of Organisationen, in welcher eine Organisation Mitglied ist

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Muttergesellschaften

Get list of Muttergesellschaften

Return a list of Muttergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Organisationen, die eine PR-Firma beauftragt haben

Get list of Organisationen, die eine PR-Firma beauftragt haben

Return a list of Organisationen, die eine PR-Firma beauftragt haben

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Mitgliedsorganisationen

Get list of Mitgliedsorganisationen

Return a list of Mitgliedsorganisationen

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Tochtergesellschaften

Get list of Tochtergesellschaften

Return a list of Tochtergesellschaften

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Aggregierter Parlamentarier

Get aggregierter Parlamentarier by ID

Return a single aggregierter Parlamentarier

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Aggregierter Gast

Get aggregierter Gast by ID

Return a single aggregierter Gast

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Aggregierte Organisation

Get aggregierte Organisation by ID

Return a single aggregierte Organisation

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Aggregierte Lobbygruppe (Interessengruppe)

Get aggregierte Lobbygruppe (Interessengruppe) by ID

Return a single aggregierte Lobbygruppe (Interessengruppe)

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Aggregierte Branche

Get aggregierte Branche by ID

Return a single aggregierte Branche

path Parameters
id
required
integer

ID

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Responses

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "count": 1,
  • "message": "1 record(s) found",
  • "sql": "\\n SELECT table.*\\n FROM v_table table\\n WHERE table.id=:id",
  • "source": "table",
  • "build secs": "0.15"
}

Aggregierte Parlament-Partei

Get list of aggregierte Parlament-Partei

Return a list of aggregierte Parlament-Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow

Query

Get list of aggregierte Parlament-Partei

Return a list of aggregierte Parlament-Partei

query Parameters
limit
string
Default: 10

Max records to return (integer or 'none'). limit=none excludes the LIMIT SQL statement.

filter_{FIELD}
string
Example: filter_{FIELD}=1

Simple field filter where filter_ is the prefix, {FIELD} is the name of the field as of the DB schema. Filter value

Example:

filter_branche_id=1
filter_{FIELD}_list
string
Example: filter_{FIELD}_list=1,2,3

List field filter where filter_ is the prefix, _list is the suffix and {FIELD} is the name of the field as of the DB schema. Comma separated list of values (without any spaces)

Example:

filter_branche_id_list=1,2,3
filter_{FIELD}_like
string
Example: filter_{FIELD}_like=%SGK%

'Like' field filter where filter_ is the prefix, _like ist the suffix and {FIELD} is the name of the field. The value can can contain % (matches any number of characters, even zero characters) or _ (matches exactly one character).

Example:

filter_kommissionen=%SGK%
select_fields
string
Example: select_fields=parlamentarier.nachname,vorname

The fields to be returned can be given in a parameter comma separeted list. The list must not contain any spaces. The id is always included.

select_fields=nachname
select_fields=nachname,vorname
select_fields=parlamentarier.nachname,parlamentarier.vorname
select_fields=parlamentarier.*
select_fields=name_de,name_fr
select_fields=*

Note: For a correct working, always the fields of all languages must be selected, e.g name_de and name_fr, sometimes the german field name is without suffix, e.g name. Comma separated list of values (without any spaces)

lang
string
Default: "de"
Enum: "de" "fr"
Example: lang=fr

Data are only returned for one language. If the language parameter lang is not set, German is the default.

includeUnpublished
integer
Default: 1
Enum: 0 1
Example: includeUnpublished=0

Show unpublished data? (Requires advanced permission)

includeInactive
integer
Default: 0
Enum: 0 1
Example: includeInactive=1

Show historised data, e.g. retired parlamentarians? (Requires advanced permission)

includeConfidentialData
integer
Default: 0
Enum: 0 1
Example: includeConfidentialData=1

Show confidential data? (Requires advanced permission)

includeMetaData
integer
Default: 0
Enum: 0 1
Example: includeMetaData=1

Show meta data, e.g. from the workflow